home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 2 / Gold Medal Software Volume 2 (Gold Medal) (1994).iso / os2 / cpostsrc.arj / TOKFILE.H < prev   
Text File  |  1993-02-13  |  546b  |  23 lines

  1. /*------------------------------------------------------------------
  2.  * tokfile.h : tokenize the contents of a file
  3.  *------------------------------------------------------------------
  4.  * 02-13-93 originally by Patrick J. Mueller
  5.  *------------------------------------------------------------------*/
  6.  
  7. #if !defined(TOKFILE_H_INCLUDED)
  8. #define TOKFILE_H_INCLUDED
  9.  
  10. #define TOKFILE_MAX_LINE 512
  11.  
  12. typedef void * TokFileInfo;
  13.  
  14. TokFileInfo TokFileOpen(
  15.    char *fileName
  16.    );
  17.  
  18. char *TokFileNext(
  19.    TokFileInfo tfi
  20.    );
  21.  
  22. #endif
  23.